home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedDispenserString.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  455 b   |  26 lines

  1. /*    =====================
  2.  *    PedDispenserString.hh
  3.  *    =====================
  4.  *    
  5.  *    Implemented by PedDispenserString.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "PedObject.hh"
  11.  
  12. class SiesString;
  13. class PedStreamInputBuffered;
  14.  
  15. class PedDispenserString : public PedObject {
  16. public:
  17.     PedDispenserString(PedStreamInputBuffered &inStream);
  18.     virtual ~PedDispenserString();
  19.     
  20.     virtual bool GetString(SiesString &outString);
  21.     
  22. protected:
  23.     PedStreamInputBuffered &mStream;
  24.     
  25. };
  26.